home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 February: Tool Chest / Dev.CD Feb 99 TC.toast / What's New? / Development Kits / Mac OS USB v1.1f3 DDK / Examples / PrinterClassDriver / Utils.h < prev   
Encoding:
C/C++ Source or Header  |  1999-01-07  |  479 b   |  27 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        Utils.h
  3.  
  4.     Contains:    General utilities header
  5.  
  6.     Copyright:    © 1998 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10. #ifndef __UTILS__
  11. #define __UTILS__
  12.  
  13. #ifndef __LISTS__
  14. #include <Lists.h>
  15. #endif
  16.  
  17. #ifndef __TYPES__
  18. #include <Types.h>
  19. #endif
  20.  
  21. extern    Boolean PStrEqualCaseInsensitive( Str255 string1, Str255 string2 );
  22. extern    void AppendPStr(StringPtr mainStr, StringPtr addStr);
  23. extern    void GetNameFromCell (StringPtr theString, Cell cell, ListHandle hList);
  24.  
  25. #endif
  26.  
  27.